home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / bitor.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  429 b   |  24 lines

  1. <!--- This example shows BitOr --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitOr Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>BitOr Example</H3>
  13.  
  14. Returns the bitwise OR of two long integers.
  15.  
  16. <P>BitOr(5,255): <CFOUTPUT>#BitOr(5,255)#</CFOUTPUT>
  17.  
  18. <P>BitOr(5,0): <CFOUTPUT>#BitOr(5,0)#</CFOUTPUT>
  19. <P>BitOr(7,8): <CFOUTPUT>#BitOr(7,8)#</CFOUTPUT>
  20.  
  21. </BODY>
  22.  
  23. </HTML>       
  24.